|
|
|
|
OnSwitched Method, SftTabs Class |
Raises the Switched event.
Syntax SftTabs Class (Softelvdm.SftTabsNET)
VB |
Protected Overridable Sub OnSwitched( ByVal e As EventArgs ) |
C# |
protected virtual void OnSwitched( EventArgs e ); |
C++ |
protected: virtual void OnSwitched( EventArgs^ e ); |
e
An EventArgs that contains the event data.
Comments
The OnSwitched method raises the Switched event.
Raising an event invokes the event handler through a delegate.
The OnSwitched method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
When overriding OnSwitched in a derived class, make sure to call the base class's OnSwitched method so that registered delegates receive the event.